home *** CD-ROM | disk | FTP | other *** search
/ Freelog 117 / FreelogNo117-OctobreNovembre2013.iso / Programmation / jedit / jedit5.1.0install.exe / {app} / macros / Editing / Open_Line_Below.bsh < prev    next >
Text File  |  2013-07-28  |  261b  |  8 lines

  1. /* Open_Line_Below.bsh: mimics the Shift-Enter combination in Eclipse,
  2.    opening a new blank line below the current cursor position.
  3.    Author: Scott LeBaron
  4.    License: GPL v 2.0
  5. */
  6. textArea.goToEndOfWhiteSpace(false);
  7. textArea.insertEnterAndIndent();
  8.